Get Model

Retrieves the details of a Model.

Supply the unique Model ID to fetch it's details.

Request
path Parameters
id
required
string

ID of the Model to fetch

Responses
200

Ok

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Internal Server Error

get/ml/models/{id}
Request samples
Response samples
application/json
{
  • "id": "string",
  • "url": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "name": "string",
  • "packageId": "string",
  • "description": "string",
  • "scope": "private",
  • "status": "created",
  • "tags": [
    ],
  • "labels": [
    ],
  • "configuration": {
    },
  • "inputType": "image",
  • "outputType": "class",
  • "datasetId": "string",
  • "artifacts": [
    ],
  • "context": {
    },
  • "moduleName": "string",
  • "metadata": {
    }
}